1
마크다운 우선 철학과 핵심 아키텍처 원칙
EvoClass-AI007Lesson 1
00:00

오픈클로우 기반

1. 마크다운 우선 철학

오픈클로우는 인간이 읽을 수 있는 문서를 절대적인 진실의 근거로 간주합니다. 데이터베이스에 논리를 숨기는 시스템과 달리, 에이전트의 "영혼"은 텍스트 파일에 정의되어 있어, 투명성 과 쉬운 버전 관리를 보장합니다.

  • SOUL.md: 성격과 윤리적 경계를 정의합니다.
  • AGENTS.md: 엔지니어링 워크플로우를 설명합니다.
  • MEMORY.md: 장기적인 사실과 선호사항을 저장합니다.

2. 모델 독립형 및 자율 운영

중앙 집중식 에이전트 런타임은 논리를 다시 작성하지 않고도 LLM(클로드, GPT, 로컬)을 교체할 수 있게 합니다. 자율 에이전트는 HEARTBEAT.md 스케줄러를 통해 24시간 운영됩니다.

3. 신뢰성 및 데이터 무결성

고 동시성 환경에서 상태 손상 을 방지하기 위해 오픈클로우는 세션 격리 를 레인 큐를 통해 수행합니다. 데이터 검색은 로컬 우선 RAG 의미적 스냅샷을 사용하는 아키텍처를 통해 처리됩니다.

구성: openclaw.json
{ "global": { "port": 18789, "identity": "./config/SOUL.md", "env_injection": true }, "security": { "firewall": "strict", "rce_protection": true } }
Type a command...
Question 1
Why does OpenClaw prioritize a "Markdown-First" approach?
To increase the execution speed of the LLM.
To ensure transparency and human-readability.
To replace the need for JSON files entirely.
Question 2
What prevents "State Corruption" during simultaneous user interactions?
Local-First RAG
Semantic Snapshots
Session Isolation via Lane Queues
Challenge: The Debugger
Diagnose the missing agent behavior.
Problem: An agent has been deployed, but it is responding with a generic personality instead of its assigned role, and it cannot recall data from yesterday's session.
Analysis
Which files or components are likely misconfigured?
Diagnosis:
1. Persona Issue: Check SOUL.md and ensure it is correctly referenced in openclaw.json.
2. Memory Issue: Ensure MEMORY.md is writable and the Local-First RAG system is successfully creating Semantic Snapshots.